home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ WinXP UnPnP 2.xpl < prev    next >
Text File  |  2003-08-20  |  2KB  |  53 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH 1"="Network\Security\Universal Plug&Play"
  5. "UIPATH 2"="System\Security\Services"
  6. "NAME"="Universal Plug&Play SSDP discovery"
  7. "VERSION"="1.01"
  8. "OSVERSION"="0001011"
  9. "LANGUAGE"="VBScript"
  10. "TEXT 1"="Enable SSDP Discover Messages"
  11. "DESCRIPTION 1"="Even if you disable both Universal Plug&Play Services, some programs might still create Simple Service Discovery (SSD) messages. That's because some programs, that use SSD messages, need to run on Windows versions before Windows XP. Since only Windows XP contains Universal Plug&Play out of the box, some other programs bring their own Universal Plug&Play executables."
  12. "DESCRIPTION 2"="This behavior is mostly seen by Windows/MSN Messenger since it creates its own SSD messages."
  13. "DESCRIPTION 3"="If you don't need that SSD message, which is normally the case, you can disable these messages here."
  14. "AUTHOR"="Xteq Systems"
  15. "CONTACTURL"="http://www.xteq.com"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17. "COMMENT 1"="see MS KB 317843"
  18.  
  19.  
  20.  
  21. sP1="HKLM\Software\Microsoft\DirectPlayNATHelp\DPNHUPnP\UPnPMode" 'DW; 2= disabled
  22.  
  23. Sub Plugin_Initialize 
  24.  i=RegReadValue(sP1)
  25.  if i<>2 then SetUIElement 1,true
  26.  
  27. End Sub
  28.  
  29.  
  30.  
  31. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  32.  b=GetUIElement(1)
  33.  if b=true then
  34.     If RegValueExists(sP1) then
  35.        Call RegDeleteValue(sP1)
  36.     end if
  37.  else
  38.     Call RegWriteValue(sP1,2,2)
  39.  end if
  40.  
  41.  Call Restart
  42. End Sub
  43.  
  44.  
  45.  
  46.  
  47.  
  48. Sub Plugin_Terminate 
  49. End Sub
  50.  
  51.  
  52.  
  53.